Followup r71241
authorSam Reed <reedy@users.mediawiki.org>
Wed, 18 Aug 2010 10:09:03 +0000 (10:09 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Wed, 18 Aug 2010 10:09:03 +0000 (10:09 +0000)
Another $bitField to $field

includes/db/DatabaseOracle.php

index 4cdea73..eae997c 100644 (file)
@@ -1130,7 +1130,7 @@ class DatabaseOracle extends DatabaseBase {
 
        function bitNot( $field ) {
                // expecting bit-fields smaller than 4bytes
-               return 'BITNOT(' . $bitField . ')';
+               return 'BITNOT(' . $field . ')';
        }
 
        function bitAnd( $fieldLeft, $fieldRight ) {